home *** CD-ROM | disk | FTP | other *** search
/ Kit PC World De Ampliacion De Windows 95 / Kit PC World de ampliacion de Windows 95.iso / internet / sweeper / samples / surfbear / access~1.cpp next >
C/C++ Source or Header  |  1995-11-22  |  1KB  |  46 lines

  1. // AccessTypeDlg.cpp : implementation file
  2. //
  3.  
  4. #include "stdafx.h"
  5. #include "SurfBear.h"
  6. #include "AccessTypeDlg.h"
  7.  
  8. #ifdef _DEBUG
  9. #define new DEBUG_NEW
  10. #undef THIS_FILE
  11. static char THIS_FILE[] = __FILE__;
  12. #endif
  13.  
  14. /////////////////////////////////////////////////////////////////////////////
  15. // CAccessTypeDlg dialog
  16.  
  17.  
  18. CAccessTypeDlg::CAccessTypeDlg(CWnd* pParent /*=NULL*/)
  19.     : CDialog(CAccessTypeDlg::IDD, pParent)
  20. {
  21.     //{{AFX_DATA_INIT(CAccessTypeDlg)
  22.     m_iRadioBtns = -1;
  23.     m_strProxyServer = _T("");
  24.     //}}AFX_DATA_INIT
  25. }
  26.  
  27.  
  28. void CAccessTypeDlg::DoDataExchange(CDataExchange* pDX)
  29. {
  30.     CDialog::DoDataExchange(pDX);
  31.     //{{AFX_DATA_MAP(CAccessTypeDlg)
  32.     DDX_Radio(pDX, IDC_RADIO1, m_iRadioBtns);
  33.     DDX_Text(pDX, IDC_EDIT_SERVERNAME, m_strProxyServer);
  34.     //}}AFX_DATA_MAP
  35. }
  36.  
  37.  
  38. BEGIN_MESSAGE_MAP(CAccessTypeDlg, CDialog)
  39.     //{{AFX_MSG_MAP(CAccessTypeDlg)
  40.         // NOTE: the ClassWizard will add message map macros here
  41.     //}}AFX_MSG_MAP
  42. END_MESSAGE_MAP()
  43.  
  44. /////////////////////////////////////////////////////////////////////////////
  45. // CAccessTypeDlg message handlers
  46.